home *** CD-ROM | disk | FTP | other *** search
/ PC Open 101 / PC Open 101 CD 2.bin / CD2 / PDF / Corsi / PHP / lezione_1 / hello-html.php < prev    next >
Encoding:
PHP Script  |  2004-08-16  |  284 b   |  12 lines

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3.     <head>
  4.         <title>PHP e HTML</title>
  5.     </head>
  6.     <body>
  7.         <?php
  8.         // tag HTML <h1> all'interno della sezione PHP
  9.             echo "<h1>Ciao PC OPEN</h1>";
  10.         ?>
  11.     </body>
  12. </html>